home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / tdsnap.arc / TDSNAP.DOC < prev    next >
Encoding:
Text File  |  1986-09-28  |  3.7 KB  |  115 lines

  1.  
  2.  
  3.                    Saxman Software
  4.                   Tools Disk Series
  5.  
  6.  
  7.  
  8.      Program:   TDSNAP
  9.      Version:   1.0  9/28/86
  10.      Purpose:   Write "snapshot" screen image to disk
  11.       Author:   Jim Standley
  12.             Based on TSR code by Lane H. Ferris
  13.     Language:   TURBO Pascal
  14.     Requires:   DOS 2.0 or later
  15.             128k
  16.  
  17.  
  18.       Overview
  19.  
  20.      TDSNAP is a memory resident program to write a "snapshot"  of
  21.      the current screen image to disk.  Once it is installed,  you
  22.      use Alt-F10 to  write the screen,  much the same  way you use
  23.      Shift-PrtSc to  print it.   You might    use TDSNAP  to capture
  24.      screen images for documentation, demos or tutorials.
  25.  
  26.      TDSNAP will  save character  mode screens  only, not graphics
  27.      mode.    If you run it  in graphics mode, the output  file will
  28.      not be usable.
  29.  
  30.  
  31.       Using TDSNAP
  32.  
  33.      To install TDSNAP  as a memory  resident program, just  enter
  34.      TDSNAP.   You    can  optionally  specify  the file you want to
  35.      write.   The  file   specification  can  include   drive  and
  36.      directory.  The default file is "TDSNAP.TXT", written to  the
  37.      current directory.
  38.  
  39.      To invoke TDSNAP, press Alt-F10.  It saves the current screen
  40.      to disk.  The output file is standard ASCII format with CR/LF
  41.      at the end of each line.  Trailing spaces are removed.   Each
  42.      screen is written as 25 lines.  A line of hyphens is  written
  43.      before each screen.
  44.  
  45.      To  un-install  TDSNAP,  press  Ctrl-Home.  Un-install TDSNAP
  46.      only from  the DOS  prompt ">"  and only  if it  is the  last
  47.      memory resident program installed!!!!
  48.  
  49.  
  50.       Memory Requirements:
  51.  
  52.      TDSNAP takes under 16k when memory resident.  If you have the
  53.      TURBO Pascal compiler, you might experiment with minimum  and
  54.      maximum free memory options.  I used 50 paragraphs for each.
  55.  
  56.  
  57.       Comptability:
  58.  
  59.      You're on your own.  I have tested it with CED and  Mansfield
  60.      Software's Personal Rexx resident.   If you find it  does not
  61.      run  with  any  other    TSR  programs,    let  me  know and I'll
  62.      document it.
  63.  
  64.  
  65.       Note:
  66.  
  67.      The vast majority of the code in this program was written  by
  68.      Lane  H.  Ferris  and    can  be  found in the public domain as
  69.      "STAYRES3.ARC".  This  code does  all the  work of installing
  70.      the program, intercepting keystrokes, and un-installing.  The
  71.      few lines  required to  save the  screen to  disk are clearly
  72.      marked in the source file.
  73.  
  74.      The file "STAYRES.PAK" should be included with this  program.
  75.      It is    a compressed  version of  the essential  routines from
  76.      STAYRES.ARC.  It  can be  used as  the primary  ingredient in
  77.      cooking up new  TSR routines without  understanding a bit  of
  78.      it.  That's how TDSNAP was done, anyhow.
  79.  
  80.  
  81.       Distribution:
  82.  
  83.      It is the  author's intention that  this program, source  and
  84.      object forms, be public domain.  It may be distributed freely
  85.      in any manner.  The author requests the following:
  86.  
  87.         1 - Do not charge for distribution of this program, beyond
  88.         the cost of reproduction & mailing.
  89.         2 - Distribute this documentation with the program.
  90.         3 - Leave the author's name & address in the document.
  91.         4 - If you modify it, please take credit for your changes.
  92.         I can't answer questions about unknown mods.
  93.  
  94.      If you want to promote user-distributed software and feel the
  95.      program is useful enough to be worth $15.00, the contribution
  96.      will certainly  be appreciated.   It will  also get  you on a
  97.      mailing  list    for  future  versions  and  other   utilities.
  98.      Include a  diskette and  self-addressed mailer  if you'd like
  99.      the source code.
  100.  
  101.  
  102.       Author:
  103.  
  104.      Jim Standley
  105.      Saxman Software
  106.      2350 Winstead Circle
  107.      Wichita, Ks  67226
  108.      316-688-0235  18:00-22:00  CST
  109.  
  110.  
  111.       Revision Log:
  112.  
  113.      09/28/86 - First version, Standley
  114.  
  115.